SET.CURRENT Function

Syntax

as P = Current()

Description

Returns the current set.

Discussion

The SET.CURRENT() method returns a pointer to the current set.

Example

dim ptr as P
dim ptr2 as P
ptr = set.open("invoice")
ptr2 = set.current()
? ptr2.filename_get()
= "c:\databases\expressions test\invoice.SET"

See Also